home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / graphics / itgraph / delphi / itgdemo.dpr < prev    next >
Encoding:
Text File  |  1995-09-05  |  408 b   |  18 lines

  1. program Itgdemo;
  2.  
  3. uses
  4.   Forms,
  5.   Playgrnd in 'PLAYGRND.PAS' {Playground},
  6.   Itgdefs in 'ITGDEFS.PAS',
  7.   Nodeinfo in 'NODEINFO.PAS' {NodeInfoDlg},
  8.   Conninfo in 'CONNINFO.PAS' {ConnInfoDlg};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.CreateForm(TPlayground, Playground);
  14.   Application.CreateForm(TNodeInfoDlg, NodeInfoDlg);
  15.   Application.CreateForm(TConnInfoDlg, ConnInfoDlg);
  16.   Application.Run;
  17. end.
  18.